Procházet zdrojové kódy

Embeds css in webview html

main
Eric Amodio před 4 roky
rodič
revize
f4cab5de51
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. +2
    -0
      webpack.config.js

+ 2
- 0
webpack.config.js Zobrazit soubor

@ -283,6 +283,7 @@ function getWebviewsConfig(mode, env) {
excludeAssets: [/.+-styles\.js/],
filename: path.join(__dirname, 'dist/webviews/settings.html'),
inject: true,
inlineSource: mode === 'production' ? '.css$' : undefined,
cspPlugin: {
enabled: true,
policy: cspPolicy,
@ -311,6 +312,7 @@ function getWebviewsConfig(mode, env) {
excludeAssets: [/.+-styles\.js/],
filename: path.join(__dirname, 'dist/webviews/welcome.html'),
inject: true,
inlineSource: mode === 'production' ? '.css$' : undefined,
cspPlugin: {
enabled: true,
policy: cspPolicy,

Načítá se…
Zrušit
Uložit