Hi team,
I got this error when running the app after integrating the Metronic v9 into my Angular project.
This is the stack trace:
```
window is not defined
at eval (~/Workspace/myproject/src/metronic/core/index.ts:106:1)
at async instantiateModule (file:///~/Workspace/myproject/node_modules/vite/dist/node/chunks/dep-C1-ZB6nQ.js:53451:5
```
Also, I notice that when I run the tailwindcss parse, I got the following error:
```
> tailwindcss -i src/styles.scss -o ./src/styles.css --watch
CssSyntaxError: ~/Workspace/myproject/src/styles.scss:6:1: Unknown word
You tried to parse SCSS with the standard CSS parser; try again with the postcss-scss parser
at Input.error (~/Workspace/myproject/node_modules/postcss/lib/input.js:106:16)
at Parser.unknownWord (~/Workspace/myproject/node_modules/postcss/lib/parser.js:593:22)
at Parser.other (~/Workspace/myproject/node_modules/postcss/lib/parser.js:435:12)
at Parser.parse (~/Workspace/myproject/node_modules/postcss/lib/parser.js:470:16)
at parse (~/Workspace/myproject/node_modules/postcss/lib/parse.js:11:12)
at new LazyResult (~/Workspace/myproject/node_modules/postcss/lib/lazy-result.js:133:16)
at Processor.process (~/Workspace/myproject/node_modules/postcss/lib/processor.js:53:14)
at ~/Workspace/myproject/node_modules/tailwindcss/lib/cli/build/plugin.js:287:50
at async Object.watch (~/Workspace/myproject/node_modules/tailwindcss/lib/cli/build/plugin.js:370:13)
at async build (~/Workspace/myproject/node_modules/tailwindcss/lib/cli/build/index.js:47:9) {
reason: 'Unknown word',
file: '~/Workspace/myproject/src/styles.scss',
source: '/* You can add global styles to this file, and also import other style files */\n' +
'@tailwind base;\n' +
'@tailwind components;\n' +
'@tailwind utilities;\n' +
'\n' +
'// Keenicons\n' +
'@import "./metronic/vendors/keenicons/duotone/style.css";\n' +
'@import "./metronic/vendors/keenicons/filled/style.css";\n' +
'@import "./metronic/vendors/keenicons/outline/style.css";\n' +
'@import "./metronic/vendors/keenicons/solid/style.css";\n',
line: 6,
column: 1,
endLine: 6,
endColumn: 3,
input: {
column: 1,
endColumn: 3,
endLine: 6,
line: 6,
source: '/* You can add global styles to this file, and also import other style files */\n' +
'@tailwind base;\n' +
'@tailwind components;\n' +
'@tailwind utilities;\n' +
'\n' +
'// Keenicons\n' +
'@import "./metronic/vendors/keenicons/duotone/style.css";\n' +
'@import "./metronic/vendors/keenicons/filled/style.css";\n' +
'@import "./metronic/vendors/keenicons/outline/style.css";\n' +
'@import "./metronic/vendors/keenicons/solid/style.css";\n',
url: 'file://~/Workspace/myproject/src/styles.scss',
file: '~/Workspace/myproject/src/styles.scss'
}
}
```
More information:
- Angular version: 18.1.0
- Tailwind version: 3.4.10
Hi,
You're right—SSR is designed for server-side execution, while the "window" object exists only on the client side browser. We haven't enabled SSR for Angular in this case, but we will look into this feature further.
Thank you
Hi @Faizal, I have looked at the sample repo but the problem to me seems like I cannot integrate the Metronic into Angular SSR project. Have you tried to do that?
When I disable SSR, it works. But when I enable the SSR, I got the "window is not defined" error at the `metronic/core/index.ts`
Hi
Have you try take a look on the sample Angular project?
https://github.com/keenthemes/metronic-tailwind-html-integration/tree/main/metronic-tailwind-angular
Let us know if you need more help.
Thanks
I have successfully integrate the Metronic demo1 to my project but I have to disable the SSR feature in Angular 18. Do we have a guide or a walk around to integrate with Angular SSR?
Seems like there we need to have a walk around for the Angular SSR.
More information:
- My project has Angular Server Side Rendering enable.