webpack.config.mjs 252 B

12345678910
  1. import * as path from 'path'
  2. import * as url from 'url'
  3. const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
  4. import config from '../webpack.plugin.config.mjs'
  5. export default () => config({
  6. name: 'serial',
  7. dirname: __dirname,
  8. })