1234567891011121314151617181920212223242526272829303132 |
- const {resolve} = require('path')
- const htmlWebpackPlugin = require('html-webpack-plugin')
- module.exports = {
- entry: './src/index.js',
- output:{
- filename: 'js/built.js',
- path: resolve(__dirname,'build')
- },
- module:{
- rules:[
- ]
- },
- plugins:[
-
-
-
- new htmlWebpackPlugin({
-
- template: './src/index.html'
- })
- ],
- mode:'production',
- externals:{
-
- jquery: 'jQuery'
- }
- }
|