nutn-homepage/Home/Compiler/webpack.config.js

14 lines
275 B
JavaScript
Raw Permalink Normal View History

2021-09-16 20:45:54 +08:00
const path = require('path')
module.exports = {
mode: 'none',
entry: './src/main.dev.js',
output: {
path: path.resolve(__dirname, './'),
filename: 'main.js'
},
module: {
rules: [{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' }]
}
}