Browse Source

Fix Webpack magic comments for Windows (#413)

pull/416/head
Matt Cowley 2 years ago committed by GitHub
parent
commit
216cfd2033
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/nginxconfig/i18n/setup.js

4
src/nginxconfig/i18n/setup.js

@ -46,7 +46,7 @@ export const getI18n = async () => {
if (availablePack === defaultPack) continue;
if (i18nPacks[availablePack]) continue;
const { default: languageData } = await import(
/* webpackInclude: /i18n\/[^/]+\/languages\.js$/ */
/* webpackInclude: /i18n[\/\\][^\/\\]+[\/\\]languages\.js$/ */
/* webpackMode: "eager" */
`./${toSep(availablePack, '-')}/languages.js`
);
@ -72,7 +72,7 @@ const loadLanguagePack = async pack => {
// Load in the full pack
// Use webpack magic to only build chunks for lang/index.js
const { default: packData } = await import(
/* webpackInclude: /i18n\/[^/]+\/index\.js$/ */
/* webpackInclude: /i18n[\/\\][^\/\\]+[\/\\]index\.js$/ */
/* webpackMode: "lazy" */
`./${toSep(pack, '-')}/index.js`
);

Loading…
Cancel
Save