14 lines
311 B
Plaintext
14 lines
311 B
Plaintext
local net = require("@lune/net")
|
|
local fs = require("@lune/fs")
|
|
|
|
local server = net.serve(3000, function()
|
|
return {
|
|
status = 200,
|
|
body = fs.readFile("dist/index.html"),
|
|
headers = {
|
|
['Application-Type'] = 'html'
|
|
}
|
|
}
|
|
end)
|
|
|
|
print(`Serving on http://localhost:3000`) |