Skip to content

Commit 4ba24b1

Browse files
committed
deploy test
1 parent 902879e commit 4ba24b1

File tree

207 files changed

+11158
-742
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+11158
-742
lines changed

config/build.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ export const config: Config = {
1818
//reactus specific settings
1919
engine: {
2020
//path where to save assets (css, images, etc)
21-
assetPath: path.join(common.assets, 'assets'),
21+
assetPath: path.join(common.docs, 'assets'),
2222
//path where to save the client scripts (js)
23-
clientPath: path.join(common.assets, 'client'),
23+
clientPath: path.join(common.docs, 'client'),
24+
//path where to save the server scripts (js)
25+
pagePath: path.join(common.build, 'pages'),
2426
//filepath to a global css file
2527
cssFiles: [
2628
'frui/frui.css',

config/common.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import path from 'node:path';
44
export type { Config } from 'stackpress/types';
55

66
export const cwd = process.cwd();
7+
export const docs = path.join(cwd, 'docs');
78
export const build = path.join(cwd, '.build');
89
export const assets = path.join(cwd, 'public');
910

0 commit comments

Comments
 (0)