We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe030db commit 65a9017Copy full SHA for 65a9017
tests/fixtures/mono/app/webpack.config.mjs
@@ -1,13 +1,11 @@
1
import unpluginDetectDuplicatedDeps from 'unplugin-detect-duplicated-deps/webpack';
2
-import { resolve } from 'path';
3
4
/** @type {import('webpack').Configuration} */
5
const config = {
6
- entry: resolve(import.meta.dirname, './index.js'),
+ entry: './index.js',
7
mode: 'production',
8
- stats: 'none',
+ stats: 'errors-only',
9
output: {
10
- path: resolve(import.meta.dirname, './dist'),
11
filename: 'bundle.mjs',
12
libraryTarget: 'module',
13
},
0 commit comments