Commit 651b1fa carlos bolanos
committed
1 parent bac412f commit 651b1fa Copy full SHA for 651b1fa
File tree 5 files changed +20
-2
lines changed
5 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 33
33
34
34
- run : bun run build
35
35
36
- - uses : cloudflare/wrangler-action@v3
36
+ - run : ls -la
37
+
38
+ - run : ls -la ./build/client
39
+
40
+ - name : deploy
41
+ uses : cloudflare/pages-action@v1
37
42
with :
43
+ projectName : cf-remix
44
+ directory : " ./build/client"
38
45
apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
39
46
accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
Original file line number Diff line number Diff line change 7
7
} from "@remix-run/react" ;
8
8
9
9
import type { LinksFunction } from "@remix-run/node" ;
10
- import baselineStylesHref from "@phoenix-ui/baseline/compiled/baseline.css" ;
10
+ import baselineStylesHref from "@phoenix-ui/baseline/compiled/baseline.css?url " ;
11
11
12
12
export const links : LinksFunction = ( ) => [
13
13
{ rel : "stylesheet" , href : baselineStylesHref } ,
Original file line number Diff line number Diff line change 38
38
"eslint-plugin-jsx-a11y" : " ^6.7.1" ,
39
39
"eslint-plugin-react" : " ^7.33.2" ,
40
40
"eslint-plugin-react-hooks" : " ^4.6.0" ,
41
+ "autoprefixer" : " ^10.4.19" ,
41
42
"node-fetch" : " ^3.3.2" ,
42
43
"typescript" : " ^5.1.6" ,
43
44
"vite" : " ^5.1.0" ,
45
+ "postcss" : " ^8.4.3" ,
44
46
"tailwindcss" : " ^3.4.1" ,
45
47
"vite-tsconfig-paths" : " ^4.2.1" ,
46
48
"wrangler" : " ^3.48.0"
Original file line number Diff line number Diff line change
1
+ /** @type {import('@remix-run/dev').AppConfig } */
2
+ export default {
3
+ ignoredRouteFiles : [ "**/*.css" ] ,
4
+ // appDirectory: "app",
5
+ // assetsBuildDirectory: "public/build",
6
+ // publicPath: "/build/",
7
+ // serverBuildPath: "build/index.js",
8
+ serverDependenciesToBundle : [ / ^ @ p h o e n i x - u i \/ / ] ,
9
+ } ;
You can’t perform that action at this time.
0 commit comments