mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2024-11-04 17:31:17 +00:00
22 lines
337 B
JavaScript
22 lines
337 B
JavaScript
const webpack = require("webpack");
|
|
|
|
module.exports = {
|
|
devServer: {
|
|
port: 8081,
|
|
disableHostCheck: true,
|
|
},
|
|
transpileDependencies: [
|
|
"vuetify"
|
|
],
|
|
pwa: {
|
|
name: 'Wg Gen Web',
|
|
},
|
|
configureWebpack: {
|
|
plugins: [
|
|
new webpack.ProvidePlugin({
|
|
Buffer: ["buffer", "Buffer"],
|
|
}),
|
|
],
|
|
}
|
|
};
|