mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-07 02:28:54 +08:00
35 lines
878 B
JavaScript
35 lines
878 B
JavaScript
const CopyPlugin = require('copy-webpack-plugin')
|
|
|
|
module.exports = {
|
|
publicPath: '',
|
|
configureWebpack: {
|
|
plugins: [
|
|
new CopyPlugin([
|
|
// This wasm file will be fetched dynamically when we initialize sql.js
|
|
// It is important that we do not change its name, and that it is in the same folder as the js
|
|
{ from: 'node_modules/sql.js/dist/sql-wasm.wasm', to: 'js/' },
|
|
{ from: 'LICENSE', to: './' }
|
|
])
|
|
]
|
|
},
|
|
chainWebpack: config => {
|
|
const svgRule = config.module.rule('svg')
|
|
svgRule.uses.clear()
|
|
svgRule
|
|
.use('url-loader')
|
|
.loader('url-loader')
|
|
.options({
|
|
limit: 10000
|
|
})
|
|
|
|
config.module
|
|
.rule('worker')
|
|
.test(/\.worker\.js$/)
|
|
.use('worker-loader')
|
|
.loader('worker-loader')
|
|
.end()
|
|
|
|
config.module.rule('js').exclude.add(/\.worker\.js$/)
|
|
}
|
|
}
|