diff options
Diffstat (limited to 'src/compiler/optimize/styles.ts')
-rw-r--r-- | src/compiler/optimize/styles.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/compiler/optimize/styles.ts b/src/compiler/optimize/styles.ts index 6f0cd9361..fa32445ba 100644 --- a/src/compiler/optimize/styles.ts +++ b/src/compiler/optimize/styles.ts @@ -205,7 +205,6 @@ export default function ({ filename, fileID }: { filename: string; fileID: strin // 3b. Update <style> attributes const styleTypeIndex = styleNodes[n].attributes.findIndex(({ name }: any) => name === 'type'); if (styleTypeIndex !== -1) { - console.log(styleNodes[n].attributes[styleTypeIndex]); styleNodes[n].attributes[styleTypeIndex].value[0].raw = 'text/css'; styleNodes[n].attributes[styleTypeIndex].value[0].data = 'text/css'; } else { |