mirror of
https://github.com/aljazceru/nostr-watch.git
synced 2025-12-17 05:24:19 +01:00
35 lines
723 B
JavaScript
35 lines
723 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
|
|
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
port: 8080
|
|
},
|
|
configureWebpack: {
|
|
// watch: true,
|
|
plugins: [new NodePolyfillPlugin()],
|
|
optimization: {
|
|
splitChunks: {
|
|
chunks: "all",
|
|
},
|
|
},
|
|
resolve: {
|
|
fallback: {
|
|
"fs": false,
|
|
"tls": false,
|
|
"net": false,
|
|
"utf-8-validate": false,
|
|
"bufferutil": false
|
|
}
|
|
},
|
|
},
|
|
chainWebpack: config => {
|
|
config.module
|
|
.rule('yaml')
|
|
.test(/\.ya?ml?$/)
|
|
.use('yaml-loader')
|
|
.loader('yaml-loader')
|
|
}
|
|
})
|