diff options
author | Percy Ma | 2022-11-19 01:01:06 +0800 |
---|---|---|
committer | GitHub | 2022-11-18 11:01:06 -0600 |
commit | 6da8bc6be9fedf8956b25680077941ed3f081d75 (patch) | |
tree | 1670209f34087cad85710732fd1ef747d0a46a77 /webpack.config.js | |
parent | 20385b52a3381964b3ab8b1708817b3578a76aca (diff) |
chore: add webpack export type check (#21857)
add webpack export type check
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index 266324299..4ad5d69bb 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -47,6 +47,7 @@ const filterCssImport = (url, ...args) => { return true; }; +/** @type {import("webpack").Configuration} */ export default { mode: isProduction ? 'production' : 'development', entry: { |