-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fix syntax errors and add missing semicolons in code files
- Loading branch information
Showing
59 changed files
with
966 additions
and
894 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/usr/bin/env -S deno run -A --watch=static/,routes/ | ||
|
||
import dev from "$fresh/dev.ts" | ||
import config from "./fresh.config.ts" | ||
import dev from "$fresh/dev.ts"; | ||
import config from "./fresh.config.ts"; | ||
|
||
import "$std/dotenv/load.ts" | ||
import "$std/dotenv/load.ts"; | ||
/**connect mongoDB */ | ||
import mongoose from "mongoose" | ||
import { load } from "$std/dotenv/mod.ts" | ||
import mongoose from "mongoose"; | ||
import { load } from "$std/dotenv/mod.ts"; | ||
/**connect mongoDB */ | ||
const env = await load() | ||
const url = env["MONGO_URL"] | ||
const env = await load(); | ||
const url = env["MONGO_URL"]; | ||
await mongoose.connect(url).then(() => { | ||
console.log("mongo DB 接続") | ||
console.log("mongo DB 接続"); | ||
}).catch((err) => { | ||
console.log(err) | ||
}) | ||
console.log(err); | ||
}); | ||
|
||
await dev(import.meta.url, "./main.ts", config) | ||
await dev(import.meta.url, "./main.ts", config); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { defineConfig } from "$fresh/server.ts" | ||
import { defineConfig } from "$fresh/server.ts"; | ||
//import twindPlugin from "$fresh/plugins/twind.ts" | ||
//import twindConfig from "./twind.config.ts"; | ||
import tailwind from "$fresh/plugins/tailwind.ts" | ||
import tailwind from "$fresh/plugins/tailwind.ts"; | ||
export default defineConfig({ | ||
plugins: [tailwind()], | ||
}) | ||
}); |
Oops, something went wrong.