소스 검색

Embeds css in webview html

main
Eric Amodio 4 년 전
부모
커밋
f4cab5de51
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      webpack.config.js

+ 2
- 0
webpack.config.js 파일 보기

@ -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,

불러오는 중...
취소
저장