Skip to content

Commit

Permalink
fix: use shared config
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabolol committed Aug 27, 2023
1 parent e78be77 commit 22993f9
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@ import "$std/dotenv/load.ts";

import { start } from "$fresh/server.ts";
import manifest from "~/fresh.gen.ts";
import config from "~/fresh.config.ts"

import twindPlugin from "$fresh/plugins/twind.ts";
import twindConfig from "~/twind.config.ts";

import { ga4Plugin } from "ga4/mod.ts";
import inject from "~/inject.ts";

await start(manifest, {
plugins: [twindPlugin(twindConfig), inject, ga4Plugin()],
});
await start(manifest, config);

0 comments on commit 22993f9

Please sign in to comment.