24 lines
512 B
JavaScript
24 lines
512 B
JavaScript
const path = require('path')
|
|
const {
|
|
default: common,
|
|
commonLoaders,
|
|
styleLoader
|
|
} = require('./webpack.common')
|
|
|
|
module.exports = {
|
|
resolve: common.resolve,
|
|
entry: './source/engine/index.js',
|
|
mode: 'development',
|
|
devtool: 'source-map',
|
|
output: {
|
|
path: path.resolve('./dist/'),
|
|
filename: 'engine.js',
|
|
library: 'Syso',
|
|
libraryTarget: 'umd',
|
|
globalObject: "(typeof window !== 'undefined' ? window : this)"
|
|
},
|
|
module: {
|
|
rules: [...commonLoaders(), styleLoader('isomorphic-style-loader')]
|
|
}
|
|
}
|