rimecms 0.25.6 → 0.25.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -130,8 +130,8 @@ export type PanelConfig = {
|
|
|
130
130
|
};
|
|
131
131
|
/** a relative path from the "static" directory or an external url
|
|
132
132
|
* @example
|
|
133
|
-
* // for static/
|
|
134
|
-
* css : '/
|
|
133
|
+
* // for static/assets/custom.css
|
|
134
|
+
* css : '/assets/custom.css'
|
|
135
135
|
*/
|
|
136
136
|
css?: string;
|
|
137
137
|
};
|
|
@@ -152,8 +152,8 @@ export const init = async ({ force, name: incomingName, skipInstall }) => {
|
|
|
152
152
|
async function copyAssets() {
|
|
153
153
|
try {
|
|
154
154
|
const currentDir = path.dirname(fileURLToPath(import.meta.url));
|
|
155
|
-
await mkdir(path.resolve(process.cwd(), 'static/panel/fonts'), { recursive: true });
|
|
156
|
-
await cp(path.join(currentDir, '../../../../panel/fonts'), path.resolve(process.cwd(), 'static/panel/fonts'), {
|
|
155
|
+
await mkdir(path.resolve(process.cwd(), 'static/assets/panel/fonts'), { recursive: true });
|
|
156
|
+
await cp(path.join(currentDir, '../../../../panel/fonts'), path.resolve(process.cwd(), 'static/assets/panel/fonts'), {
|
|
157
157
|
recursive: true
|
|
158
158
|
});
|
|
159
159
|
logger.info('[✓] Copied assets');
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'Lora';
|
|
3
|
-
src: url('/panel/fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
|
|
3
|
+
src: url('/assets/panel/fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
|
|
4
4
|
font-weight: 100 1000;
|
|
5
5
|
font-style: Italic;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
@font-face {
|
|
9
9
|
font-family: 'Lora';
|
|
10
|
-
src: url('/panel/fonts/Lora-VariableFont_wght.ttf') format('truetype');
|
|
10
|
+
src: url('/assets/panel/fonts/Lora-VariableFont_wght.ttf') format('truetype');
|
|
11
11
|
font-weight: 100 1000;
|
|
12
12
|
font-style: normal;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
@font-face {
|
|
16
16
|
font-family: 'Chivo';
|
|
17
|
-
src: url('/panel/fonts/ChivoMono-Italic-VariableFont_wght.ttf') format('truetype');
|
|
17
|
+
src: url('/assets/panel/fonts/ChivoMono-Italic-VariableFont_wght.ttf') format('truetype');
|
|
18
18
|
font-weight: 100 1000;
|
|
19
19
|
font-style: Italic;
|
|
20
20
|
}
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
--rz-font-scale: 0.8;
|
|
24
24
|
|
|
25
25
|
--rz-font-sans:
|
|
26
|
-
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
|
|
27
|
-
'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
26
|
+
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
|
|
27
|
+
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
28
28
|
--rz-font-mono: 'SFMono-Regular', Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
29
29
|
--rz-font-serif: 'Lora';
|
|
30
30
|
|