Regarding the theme "launch" layoutData.js configuration
The following path is wrong (L19):
head__42: html` <link rel="stylesheet" href="resolve:root/src/assets/styles.css" /> `,
It should be:
head__42: html` <link rel="stylesheet" href="resolve:#src/assets/styles.css" /> `,
Given that (i) the package.json includes:
"imports": {
"#src/*": "./site/src/*"
}
and that (ii) you have a styles.css in the /site/src/assets/ folder.
As a suggestion, it could be convenient to add a styles.css document on the said location by default (e.g. a copy from variables.css), such that you can immediately start playing around with your css variables.
Regarding the theme "launch"
layoutData.jsconfigurationThe following path is wrong (L19):
It should be:
Given that (i) the
package.jsonincludes:and that (ii) you have a
styles.cssin the/site/src/assets/folder.As a suggestion, it could be convenient to add a
styles.cssdocument on the said location by default (e.g. a copy fromvariables.css), such that you can immediately start playing around with your css variables.